home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / pulse / default.pa < prev    next >
Text File  |  2009-10-26  |  5KB  |  139 lines

  1. #!/usr/bin/pulseaudio -nF
  2. #
  3. # This file is part of PulseAudio.
  4. #
  5. # PulseAudio is free software; you can redistribute it and/or modify it
  6. # under the terms of the GNU Lesser General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # PulseAudio is distributed in the hope that it will be useful, but
  11. # WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. # General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU Lesser General Public License
  16. # along with PulseAudio; if not, write to the Free Software Foundation,
  17. # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
  18.  
  19. # This startup script is used only if PulseAudio is started per-user
  20. # (i.e. not in system mode)
  21.  
  22. .nofail
  23.  
  24. ### Load something into the sample cache
  25. #load-sample-lazy x11-bell /usr/share/sounds/gtk-events/activate.wav
  26. #load-sample-lazy pulse-hotplug /usr/share/sounds/startup3.wav
  27. #load-sample-lazy pulse-coldplug /usr/share/sounds/startup3.wav
  28. #load-sample-lazy pulse-access /usr/share/sounds/generic.wav
  29. load-sample-dir-lazy /usr/share/sounds/ubuntu/stereo
  30.  
  31. .fail
  32.  
  33. ### Automatically restore the volume of streams and devices
  34. load-module module-device-restore
  35. load-module module-stream-restore
  36. load-module module-card-restore
  37.  
  38. ### Automatically augment property information from .desktop files
  39. ### stored in /usr/share/application
  40. load-module module-augment-properties
  41.  
  42. ### Load audio drivers statically (it's probably better to not load
  43. ### these drivers manually, but instead use module-hal-detect --
  44. ### see below -- for doing this automatically)
  45. #load-module module-alsa-sink
  46. #load-module module-alsa-source device=hw:1,0
  47. #load-module module-oss device="/dev/dsp" sink_name=output source_name=input
  48. #load-module module-oss-mmap device="/dev/dsp" sink_name=output source_name=input
  49. #load-module module-null-sink
  50. #load-module module-pipe-sink
  51.  
  52. ### Automatically load driver modules depending on the hardware available
  53. .ifexists module-udev-detect.so
  54. load-module module-udev-detect
  55. .else
  56. ### Alternatively use the static hardware detection module (for systems that
  57. ### lack udev support)
  58. load-module module-detect
  59. .endif
  60.  
  61. ### Automatically load driver modules for Bluetooth hardware
  62. .ifexists module-bluetooth-discover.so
  63. load-module module-bluetooth-discover
  64. .endif
  65.  
  66. ### Load several protocols
  67. .ifexists module-esound-protocol-unix.so
  68. load-module module-esound-protocol-unix
  69. .endif
  70. load-module module-native-protocol-unix
  71.  
  72. ### Network access (may be configured with paprefs, so leave this commented
  73. ### here if you plan to use paprefs)
  74. #load-module module-esound-protocol-tcp
  75. #load-module module-native-protocol-tcp
  76. #load-module module-zeroconf-publish
  77.  
  78. ### Load the RTP reciever module (also configured via paprefs, see above)
  79. #load-module module-rtp-recv
  80.  
  81. ### Load the RTP sender module (also configured via paprefs, see above)
  82. #load-module module-null-sink sink_name=rtp format=s16be channels=2 rate=44100 description="RTP Multicast Sink"
  83. #load-module module-rtp-send source=rtp.monitor
  84.  
  85. ### Load additional modules from GConf settings. This can be configured with the paprefs tool.
  86. ### Please keep in mind that the modules configured by paprefs might conflict with manually
  87. ### loaded modules.
  88. .ifexists module-gconf.so
  89. .nofail
  90. load-module module-gconf
  91. .fail
  92. .endif
  93.  
  94. ### Automatically restore the default sink/source when changed by the user during runtime
  95. load-module module-default-device-restore
  96.  
  97. ### Automatically move streams to the default sink if the sink they are
  98. ### connected to dies, similar for sources
  99. load-module module-rescue-streams
  100.  
  101. ### Make sure we always have a sink around, even if it is a null sink.
  102. load-module module-always-sink
  103.  
  104. ### Honour intended role device property
  105. load-module module-intended-roles
  106.  
  107. ### Automatically suspend sinks/sources that become idle for too long
  108. load-module module-suspend-on-idle
  109.  
  110. ### If autoexit on idle is enabled we want to make sure we only quit
  111. ### when no local session needs us anymore.
  112. load-module module-console-kit
  113.  
  114. ### Enable positioned event sounds
  115. load-module module-position-event-sounds
  116.  
  117. ### Cork music streams when a phone stream is active
  118. #load-module module-cork-music-on-phone
  119.  
  120. # X11 modules should not be started from default.pa so that one daemon
  121. # can be shared by multiple sessions.
  122.  
  123. ### Load X11 bell module
  124. #load-module module-x11-bell sample=bell-windowing-system
  125.  
  126. ### Register ourselves in the X11 session manager
  127. #load-module module-x11-xsmp
  128.  
  129. ### Publish connection data in the X11 root window
  130. #.ifexists module-x11-publish.so
  131. #.nofail
  132. #load-module module-x11-publish
  133. #.fail
  134. #.endif
  135.  
  136. ### Make some devices default
  137. #set-default-sink output
  138. #set-default-source input
  139.